home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_7.adf / Source_And_Examples / source / libent.a < prev    next >
Encoding:
Text File  |  1992-07-30  |  728 b   |  49 lines

  1.     include    'exec/types.i'
  2.     include    'exec/resident.i'
  3.     include    'exec/nodes.i'
  4.     include    'exec/libraries.i'
  5.  
  6. PRI    equ    0
  7.  
  8.  
  9.     csect     text,0
  10.    
  11.     xref    _LibID
  12.     xref    _LibName
  13.     xref    RESLEN
  14.     xref    _BSSBAS        * linker defined base of BSS
  15.     xref    _BSSLEN        * linker defined length of BSS
  16.     xref    _LibFuncTab
  17.     xref    _LibInitTab
  18.             
  19.  
  20.     CNOP    4
  21.     xref    _LibInit
  22.     xdef    _LibRomTag
  23.     
  24.     moveq    #0,d0
  25.     rts
  26. _LibRomTag:
  27.     dc.w    RTC_MATCHWORD
  28.     dc.l    _LibRomTag
  29.     dc.l    endtag
  30. *    dc.b    RTF_AUTOINIT
  31. *    dc.b    _LibVersion
  32.     dc.w    RTF_AUTOINIT<<8+_LibVersion
  33.     dc.b    NT_LIBRARY
  34.     dc.b    PRI
  35.     dc.l    _LibName
  36.     dc.l    _LibID
  37.     dc.l    _LibInitTab
  38. endtag:
  39.     section    __MERGED,data
  40.     xdef    _Libmergeddata
  41. _Libmergeddata    dc.l    0
  42.  
  43.     csect     data,0,1,1,2
  44.    xref  _LibVersion * need a 16 bit reloc here
  45.  
  46.  
  47.     end
  48.     
  49.